Otherwise
    ---------------------
    Different to basic
     
     
    The only difference between WimpBasic and Basic is that the statements
    to execute in Otherwise conditions can't follow the Otherwise statement
    as the colon (. : .)can't be used anymore to separate statements.
    For example:
     
    In Basic:
     
    Case A% Of
    When 10: Print "10"
    Otherwise: Print "<>10"
    EndCase
     
    would have to be in WimpBasic:
     
    Case A% Of
    When 10
      Print "10"
    Otherwise
      Print "<>10"
    EndCase